Booleans

(&&) :: Boolean -> Boolean -> Boolean (Prelude)

Boolean conjunction (and). The function is a macro that evaluates the second parameter only if the first parameter is True.

aba && b
TrueTrueTrue
TrueFalseFalse
Falsenot evaluatedFalse
(||) :: Boolean -> Boolean -> Boolean (Prelude)

Boolean disjunction (or). The function is a macro that evaluates the second parameter only if the first parameter is False.

aba || b
Truenot evaluatedTrue
FalseTrueTrue
FalseFalseFalse
not :: Boolean -> Boolean (Prelude)

Boolean negation

and :: [Boolean] -> Boolean (Prelude)

Conjunction over a list.

or :: [Boolean] -> Boolean (Prelude)

Disjunction over a list.

all :: (a -> <b> Boolean) -> [a] -> <b> Boolean (Prelude)

all pred lst tests whether the predicate pred holds for all elements of lst. It returns immediately when it encounters the first value not satisfying the predicate.

any :: (a -> <b> Boolean) -> [a] -> <b> Boolean (Prelude)

any pred lst tests whether the predicate pred holds some element of lst. It returns immediately when it encounters the first value satisfying the predicate.